home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / tstparse / tstparse.dpr < prev    next >
Text File  |  1996-09-15  |  195b  |  14 lines

  1. program tstparse;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm},
  6.   Parser in 'PARSER.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TMainForm, MainForm);
  12.   Application.Run;
  13. end.
  14.